home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CIRC3.PAK / CIRC3PPG.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  47 lines

  1. // circ3ppg.h : Declaration of the CCirc3PropPage property page class.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. ////////////////////////////////////////////////////////////////////////////
  14. // CCirc3PropPage : See circ3ppg.cpp for implementation.
  15.  
  16. class CCirc3PropPage : public COlePropertyPage
  17. {
  18.     DECLARE_DYNCREATE(CCirc3PropPage)
  19.     DECLARE_OLECREATE_EX(CCirc3PropPage)
  20.  
  21. // Constructor
  22. public:
  23.     CCirc3PropPage();
  24.  
  25. // Dialog Data
  26.     //{{AFX_DATA(CCirc3PropPage)
  27.     enum { IDD = IDD_PROPPAGE_CIRC3 };
  28.     CString m_caption;
  29.     int     m_circleOffset;
  30.     BOOL    m_circleShape;
  31.     CString m_note;
  32.     //}}AFX_DATA
  33.  
  34. // Implementation
  35. protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.  
  38. // Message maps
  39. protected:
  40.     //{{AFX_MSG(CCirc3PropPage)
  41.         // NOTE - ClassWizard will add and remove member functions here.
  42.         //    DO NOT EDIT what you see in these blocks of generated code !
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45.  
  46. };
  47.